@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.navbar a {
    position: absolute;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
    top: 20px;
    left: 20px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    width: 0;
    height: 2px;
    background: #ff9140;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

.wrapper {
    width: 750px;
    background: rgba(225, 225, 225, .1);
    border: 2px solid rgba(255, 255, 255, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    backdrop-filter: blur(50px);
    border-radius: 10px;
    color: #000000;
    padding: 40px 35px 55px;
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.wrapper .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.input-box .input-field {
    position: relative;
    width: 48%;
    margin: 13px 0;
    height: 50px;
    border: 1px solid black;
}

.input-box .input-field input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 10px solid rgba(255, 255, 255, .2);
    outline: none;
    font-size: 16px;
    color: #000000;
    border-radius: 6px;
    padding: 15px 15px 15px 40px;
}

.input-box .input-field input::placeholder {
    color: #000000;
}

.input-box .input-field i {
    position: absolute;
    left: 21px;
    top: 30%;
    transform: translate(-50%);
    font-size: 20px;
}

.wrapper label {
    font-size: 14.5px;
    margin: 10px 0 23px;
    display: inline-block;
}

.wrapper label input {
    accent-color: #000000;
    margin-right: 5px;
}

.wrapper .btn {
    width: 100%;
    height: 45px;
    background: #000000;
    border: none;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;

}